home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / alangsbs.zip / VIDTBL.SRC < prev    next >
Text File  |  1989-12-12  |  2KB  |  54 lines

  1. ;---------------------------------------------------------------
  2. ; DISPLAY ADAPTER INFORMATION LOOKUP TABLE
  3. ;
  4. ; This is the lookup table containing information on all legal
  5. ; display adapters.  The first field in each element is a 26-
  6. ; character string containing a brief description of the
  7. ; adapter.  The next field is the segment of the video refresh
  8. ; buffer.  The last three fields are the number of screen lines
  9. ; an adapter displays when the 8-pixel, 14-pixel, and 16-pixel
  10. ; fonts are loaded, respectively.  Note that not all adapters
  11. ; support all fonts, but a screen line count is given for all
  12. ; three fonts for all adapter types.  Illegal combinations will
  13. ; not be accessed.
  14. ;---------------------------------------------------------------
  15. VidInfoTbl DB      'No adapter identified      '    ; Code 0
  16.            DW      0B000H
  17.            DB      25,25,25
  18.            DB      'Monochrome Display Adapter '    ; Code 1
  19.            DW      0B000H
  20.            DB      25,25,25
  21.            DB      'Color Graphics Adapter     '    ; Code 2
  22.            DW      0B800H
  23.            DB      25,25,25
  24.            DB      'Code 3: Undefined          '    ; Code 3
  25.            DW      0B000H
  26.            DB      25,25,25
  27.            DB      'EGA with color monitor     '    ; Code 4
  28.            DW      0B800H
  29.            DB      43,25,25
  30.            DB      'EGA with mono monitor      '    ; Code 5
  31.            DW      0B000H
  32.            DB      43,25,25
  33.            DB      'Code 6: Undefined          '    ; Code 6
  34.            DW      0B000H
  35.            DB      25,25,25
  36.            DB      'VGA with mono monitor      '    ; Code 7
  37.            DW      0B000H
  38.            DB      50,27,25
  39.            DB      'VGA with color monitor     '    ; Code 8
  40.            DW      0B800H
  41.            DB      50,27,25
  42.            DB      'Code 9: Undefined          '    ; Code 9
  43.            DW      0B000H
  44.            DB      25,25,25
  45.            DB      'MCGA with digital color    '    ; Code 0AH
  46.            DW      0B800H
  47.            DB      25,25,25
  48.            DB      'MCGA with monochrome       '    ; Code 0BH
  49.            DW      0B000H
  50.            DB      25,25,25
  51.            DB      'MCGA with analog color     '    ; Code 0CH
  52.            DW      0B800H
  53.            DB      25,25,25
  54.